package com.philbeaudoin.gwtpsample.client; /** * Copyright 2010 Philippe Beaudoin * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import com.google.inject.Singleton; import com.philbeaudoin.gwtp.mvp.client.DefaultEventBus; import com.philbeaudoin.gwtp.mvp.client.DefaultProxyFailureHandler; import com.philbeaudoin.gwtp.mvp.client.EventBus; import com.philbeaudoin.gwtp.mvp.client.RootPresenter; import com.philbeaudoin.gwtp.mvp.client.gin.AbstractPresenterModule; import com.philbeaudoin.gwtp.mvp.client.proxy.ParameterTokenFormatter; import com.philbeaudoin.gwtp.mvp.client.proxy.PlaceManager; import com.philbeaudoin.gwtp.mvp.client.proxy.ProxyFailureHandler; import com.philbeaudoin.gwtp.mvp.client.proxy.TokenFormatter; public class MyModule extends AbstractPresenterModule { @Override protected void configure() { bind(EventBus.class).to(DefaultEventBus.class).in(Singleton.class); bind(PlaceManager.class).to(MyPlaceManager.class).in(Singleton.class); bind(TokenFormatter.class).to(ParameterTokenFormatter.class).in(Singleton.class); bind(RootPresenter.class).asEagerSingleton(); bind(ProxyFailureHandler.class).to(DefaultProxyFailureHandler.class).in(Singleton.class); // Presenters bindPresenter(MainPagePresenter.class, MainPagePresenter.MyView.class, MainPageView.class, MainPagePresenter.MyProxy.class); bindPresenter(ResponsePresenter.class, ResponsePresenter.MyView.class, ResponseView.class, ResponsePresenter.MyProxy.class); } }